Skip to content

chore(deps): bump the dependencies group with 5 updates#532

Merged
seqre merged 1 commit intomasterfrom
dependabot/cargo/dependencies-cb8dd3fb53
Mar 29, 2026
Merged

chore(deps): bump the dependencies group with 5 updates#532
seqre merged 1 commit intomasterfrom
dependabot/cargo/dependencies-cb8dd3fb53

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 29, 2026

Bumps the dependencies group with 5 updates:

Package From To
askama 0.15.4 0.15.6
askama_derive 0.15.4 0.15.6
insta 1.46.3 1.47.1
lettre 0.11.19 0.11.20
redis 1.0.5 1.1.0

Updates askama from 0.15.4 to 0.15.6

Release notes

Sourced from askama's releases.

v0.15.6

What's Changed

Full Changelog: askama-rs/askama@v0.15.5...v0.15.6

v0.15.5

What's Changed

Full Changelog: askama-rs/askama@v0.15.4...v0.15.5

Commits
  • 4260d0d Merge pull request #719 from GuillaumeGomez/update-crate-version
  • 1471702 Update crate version to 0.15.6
  • fb6f3fb Merge pull request #718 from GuillaumeGomez/improve-ui-tests
  • 4f36391 Merge pull request #717 from GuillaumeGomez/fix-non-ident-block
  • 1b4350b Update trybuild version to 1.0.116 to enforce diagnostics width
  • 2ad677c Correctly handle non-ident item in block error
  • 5e12585 Merge pull request #714 from jplatte/jplatte/lt-refactor
  • 0ebfd0f Merge pull request #716 from jplatte/jplatte/clippy
  • 3c0f1b0 Merge pull request #715 from jplatte/jplatte/winnow1
  • acc29f3 Remove unnecessary .clone()
  • Additional commits viewable in compare view

Updates askama_derive from 0.15.4 to 0.15.6

Release notes

Sourced from askama_derive's releases.

v0.15.6

What's Changed

Full Changelog: askama-rs/askama@v0.15.5...v0.15.6

v0.15.5

What's Changed

Full Changelog: askama-rs/askama@v0.15.4...v0.15.5

Commits
  • 4260d0d Merge pull request #719 from GuillaumeGomez/update-crate-version
  • 1471702 Update crate version to 0.15.6
  • fb6f3fb Merge pull request #718 from GuillaumeGomez/improve-ui-tests
  • 4f36391 Merge pull request #717 from GuillaumeGomez/fix-non-ident-block
  • 1b4350b Update trybuild version to 1.0.116 to enforce diagnostics width
  • 2ad677c Correctly handle non-ident item in block error
  • 5e12585 Merge pull request #714 from jplatte/jplatte/lt-refactor
  • 0ebfd0f Merge pull request #716 from jplatte/jplatte/clippy
  • 3c0f1b0 Merge pull request #715 from jplatte/jplatte/winnow1
  • acc29f3 Remove unnecessary .clone()
  • Additional commits viewable in compare view

Updates insta from 1.46.3 to 1.47.1

Release notes

Sourced from insta's releases.

1.47.1

Release Notes

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

Install cargo-insta 1.47.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.1/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.47.1/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.47.1

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum

1.47.0

Release Notes

  • Add Comparator trait for customizing how snapshot values are compared. #872 (@​dstu)
  • Sort sequences in sort_maps to fix non-deterministic HashSet snapshots. #876
  • Improve TOML serialization error message for unsupported types, suggesting assert_json_snapshot! or assert_yaml_snapshot! as alternatives. #880
  • Remove unnecessary Send + Sync bounds from Redaction, allowing non-Send closures in dynamic redactions. #874
  • Don't use Arc in Settings unnecessarily. #873 (@​dstu)
  • Upgrade console to 0.16 and MSRV to 1.66. #885
  • Upgrade toml-edit to 0.25. #882 (@​alexanderkjall)

Install cargo-insta 1.47.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.0/cargo-insta-installer.sh | sh

... (truncated)

Changelog

Sourced from insta's changelog.

1.47.1

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

1.47.0

  • Add Comparator trait for customizing how snapshot values are compared. #872 (@​dstu)
  • Sort sequences in sort_maps to fix non-deterministic HashSet snapshots. #876
  • Improve TOML serialization error message for unsupported types, suggesting assert_json_snapshot! or assert_yaml_snapshot! as alternatives. #880
  • Remove unnecessary Send + Sync bounds from Redaction, allowing non-Send closures in dynamic redactions. #874
  • Don't use Arc in Settings unnecessarily. #873 (@​dstu)
  • Upgrade console to 0.16 and MSRV to 1.66. #885
  • Upgrade toml-edit to 0.25. #882 (@​alexanderkjall)
Commits
  • fdbfc15 Revert sort_maps sequence sorting, release 1.47.1 (#891)
  • 46b6f2a Release 1.47.0 (#889)
  • aa12933 Upgrade console to 0.16, bump MSRV to 1.66 (#885)
  • 98c084c upgrade toml-edit to 0.25 (#882)
  • 4e889b0 the test_glob test depends on both glob and json (#883)
  • 4d738e5 Bump @​tootallnate/once and @​vscode/test-electron in /vscode-insta (#881)
  • 09f2b8b Improve TOML serialization error message for unsupported types (#880)
  • 1373bbc Add Comparator trait (#872)
  • ebe5a6e Sort sequences in sort_maps to fix non-deterministic HashSet snapshots (#...
  • eaf15ba Remove unnecessary Send + Sync bounds from Redaction (#874)
  • Additional commits viewable in compare view

Updates lettre from 0.11.19 to 0.11.20

Release notes

Sourced from lettre's releases.

v0.11.20

Upgrade notes

Features

  • Add Address::new_dangerous #1107

Misc

  • Replace chumsky with nom for email address parsing #1099
  • Upgrade to Rust 2024 edition #1130
  • Upgrade boring and tokio-boring to v5 #1130
Changelog

Sourced from lettre's changelog.

v0.11.20 (2026-03-28)

Upgrade notes

  • MSRV is now 1.85 (#1130)

Features

  • Add Address::new_dangerous (#1107)

Misc

  • Replace chumsky with nom for email address parsing (#1099)
  • Upgrade to Rust 2024 edition (#1130)
  • Upgrade boring and tokio-boring to v5 (#1130)

#1099: lettre/lettre#1099 #1107: lettre/lettre#1107 #1130: lettre/lettre#1130

Commits
  • 134b720 Prepare v0.11.20
  • 3321bff refactor: replace chumsky with nom
  • 7d5f52d feat: add Address::new_unchecked
  • b905242 build(deps): upgrade maud to v0.27
  • 80297f4 build(deps): upgrade criterion to v0.7
  • 47f3837 build(deps): upgrade boring to v5
  • a4c26e9 style: fix boring deprecation warning
  • 3ba0b96 style(clippy): fix latest warnings
  • 6d8cadf build(deps): upgrade semver compatible Rust dependencies
  • 8442a59 style: remove import of Future
  • Additional commits viewable in compare view

Updates redis from 1.0.5 to 1.1.0

Release notes

Sourced from redis's releases.

redis-1.1.0

1.1.0 (2026-03-20)

Changes & Bug fixes

CI improvements

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [askama](https://github.com/askama-rs/askama) | `0.15.4` | `0.15.6` |
| [askama_derive](https://github.com/askama-rs/askama) | `0.15.4` | `0.15.6` |
| [insta](https://github.com/mitsuhiko/insta) | `1.46.3` | `1.47.1` |
| [lettre](https://github.com/lettre/lettre) | `0.11.19` | `0.11.20` |
| [redis](https://github.com/redis-rs/redis-rs) | `1.0.5` | `1.1.0` |


Updates `askama` from 0.15.4 to 0.15.6
- [Release notes](https://github.com/askama-rs/askama/releases)
- [Commits](askama-rs/askama@v0.15.4...v0.15.6)

Updates `askama_derive` from 0.15.4 to 0.15.6
- [Release notes](https://github.com/askama-rs/askama/releases)
- [Commits](askama-rs/askama@v0.15.4...v0.15.6)

Updates `insta` from 1.46.3 to 1.47.1
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.46.3...1.47.1)

Updates `lettre` from 0.11.19 to 0.11.20
- [Release notes](https://github.com/lettre/lettre/releases)
- [Changelog](https://github.com/lettre/lettre/blob/master/CHANGELOG.md)
- [Commits](lettre/lettre@v0.11.19...v0.11.20)

Updates `redis` from 1.0.5 to 1.1.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-1.0.5...redis-1.1.0)

---
updated-dependencies:
- dependency-name: askama
  dependency-version: 0.15.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: askama_derive
  dependency-version: 0.15.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: insta
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lettre
  dependency-version: 0.11.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: redis
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the A-deps Area: Dependencies label Mar 29, 2026
@seqre seqre enabled auto-merge (squash) March 29, 2026 17:46
@github-actions
Copy link
Copy Markdown

🐰 Bencher Report

Branchdependabot/cargo/dependencies-cb8dd3fb53
Testbedgithub-ubuntu-latest

🚨 1 Alert

BenchmarkMeasure
Units
ViewBenchmark Result
(Result Δ%)
Upper Boundary
(Limit %)
single_root_route/single_root_routeLatency
milliseconds (ms)
📈 plot
🚷 threshold
🚨 alert (🔔)
1.07 ms
(+16.68%)Baseline: 0.92 ms
1.06 ms
(100.84%)

Click to view all benchmark results
BenchmarkLatencyBenchmark Result
milliseconds (ms)
(Result Δ%)
Upper Boundary
milliseconds (ms)
(Limit %)
empty_router/empty_router📈 view plot
🚷 view threshold
6.61 ms
(+10.45%)Baseline: 5.98 ms
7.19 ms
(91.88%)
json_api/json_api📈 view plot
🚷 view threshold
1.15 ms
(+10.60%)Baseline: 1.04 ms
1.20 ms
(95.26%)
nested_routers/nested_routers📈 view plot
🚷 view threshold
1.07 ms
(+11.84%)Baseline: 0.95 ms
1.10 ms
(97.06%)
single_root_route/single_root_route📈 view plot
🚷 view threshold
🚨 view alert (🔔)
1.07 ms
(+16.68%)Baseline: 0.92 ms
1.06 ms
(100.84%)

single_root_route_burst/single_root_route_burst📈 view plot
🚷 view threshold
19.71 ms
(+12.00%)Baseline: 17.59 ms
21.07 ms
(93.51%)
🐰 View full continuous benchmarking report in Bencher

@seqre seqre merged commit 9b5598d into master Mar 29, 2026
35 of 38 checks passed
@seqre seqre deleted the dependabot/cargo/dependencies-cb8dd3fb53 branch March 29, 2026 18:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-deps Area: Dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant